home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 10 / editpth3.zip / EDITPATH.DOC next >
Text File  |  1990-05-08  |  8KB  |  254 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.                          ╔═══════════════════════════╗
  10.                          ║ A MÄC's Place BBS Release ║
  11.                          ╚═══════════════════════════╝
  12.  
  13.  
  14.  
  15.                          EDIT PATH - The DOS path Editor
  16.  
  17.                                   Version  3.0
  18.  
  19.  
  20.  
  21.                                Copyright (C),  1990
  22.  
  23.  
  24.  
  25.  
  26.  
  27.                                     Written By:        
  28.  
  29.                                  John W. McNamara
  30.                         
  31.                                   MÄC's Place BBS    
  32.                                      Dunn, NC           
  33.  
  34.                             (919) 891-1111 [19,200 HST] 
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.                             Release Date: 8 May 1990
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.     EDITPATH - Version 3.0                                           Page - 1
  54.  
  55.  
  56.     EDITPATH - A MÄC's Place BBS Release
  57.  
  58.  
  59. ┌────────────────────────────────┐
  60. │ Files included in this Zip:    │
  61. └────────────────────────────────┘
  62.  
  63.     EDITPATH.EXE   -    Main Executable    (File Size   13321)
  64.     EDITPATH.DOC   -    Complete Documentation
  65.  
  66.  
  67.  
  68.  
  69. ╔══════════════╗
  70. ║ Introduction ║
  71. ╚══════════════╝
  72.  
  73.   Time and Time again  I  have  had to reboot after changing my DOS
  74.   Path.  Well I got  Tired of  it, so I came  up with a PATH Editor
  75.  
  76.   EDITPATH is a one line  word  processor  that  will  allow you to
  77.   edit the existing PATH environment without having to reboot. This
  78.   is just the first BETA version so it only handles PATH's that are
  79.   80 Characters or less.  EDITPATH supports your arrow keys as well
  80.   as backspace and delete keys, thus giving you  enough flexibility
  81.   to edit your path properly.
  82.  
  83.   Just  simply type EDITPATH or whatever you rename it to, and your
  84.   present path will appear between two double lines as shown below.
  85.   If your path is non-existant then you will be returned to the DOS
  86.   prompt.
  87.  
  88.  
  89.  ════════════════════════════════════════════════════════════════════
  90.  D:\UTL;D:\RBASE;C:\DOS;D:\MASM;D:\MSC;
  91.  ════════════════════════════════════════════════════════════════════
  92.  
  93. Hit ENTER after you have finished Editing your Path, you will be
  94. prompted as to whether or not you want to save the new path.  Hitting
  95. <y> will change the path, hitting anything else will leave the path
  96. unchanged.
  97.  
  98. If you decide you want to edit the existing PATH then type the new
  99. directory you wish to add or remove one you don't need.
  100.  
  101. Its as simple as that....................
  102.  
  103. I have received some input on the editor,  comments include the INSERT
  104. key toggle should work.  I agree, however I'm still working on that
  105. The edit portion in is ASSEMBLY language and it takes me a little longer
  106. with assembly than it does "C" Version 4.0 will support the HOME, END and
  107. INSERT keys.
  108.  
  109.  
  110.  
  111.     EDITPATH - Version 3.0                                           Page - 2
  112.  
  113. ╔═════════╗
  114. ║ History ║
  115. ╚═════════╝
  116.    Version 3.0  8 May 1990
  117.  
  118.         o  FIXED  -   Bad Switch Statement causing it to recognise
  119.            only UPPER case code.
  120.  
  121.         o  Program now exits when trying to edit a PATH that doesn't
  122.            exist.
  123.  
  124.         o  Fixed the problem with having a an option to save a
  125.            blank path (Thus setting it to Null) Now you have
  126.            an option before you didn't.  Also eliminates the
  127.            PATH= being located in the environment when a empty
  128.            PATH was saved.
  129.  
  130.         o  Added a function to delete trailing blanks in the string
  131.  
  132.    Version 2.0  7 May 1990
  133.  
  134.         o  Added more Prompts to make the program safer to use.
  135.  
  136.         o  Added a heap Manager
  137.  
  138.         o  Changed the way the segments in memory were walked
  139.  
  140.    Version 1.0ß 24 April 1990
  141.  
  142.         o First release of Wide BETA test.  Many Quirks were found.
  143.  
  144.  
  145. This Program was written in:
  146.                  Microsoft "C" 5.1  
  147.                  Microsoft Assembler 5.0                
  148.  
  149. I would like to thank the following individuals:
  150.  
  151. DAVID DUBOIS - For Writing the Environment Manipulations routines
  152.                Originally in Pascal SETPATH.PAS from BPROGA
  153.  
  154. CLAY DAVIS   - For Modifying the Tables 
  155.  
  156. WAYNE JAMES  - For hunting the above Source Code down for me.
  157.  
  158. DOUG MACLEAN - RIME "C" Conference Host for listening to me bitch
  159.                about DOS limitations and offering examples on how
  160.                to take on this project. Also for letting me bounce
  161.                ideas off him.  If you aren't participating in the
  162.                RIME (RelayNet International Message Exchange) "C"
  163.                conference and your a "C" programmer then your missing
  164.                something special.
  165.  
  166. ALLEN DEW    - SYSOP GENEAL BBS in N.C. 919-471-6026
  167.                For intensive BETA testing of the first 2 versions
  168.  
  169.  And anyone I forgot to mention...
  170.  
  171.  
  172.  
  173.     EDITPATH - Version 3.0                                           Page - 3
  174.  
  175. Now for the legal stuff:
  176.  
  177.  
  178.   EDITPATH (C) Copyright 1990        MÄC's Place BBS
  179.                                      John W. McNamara
  180.                                      All Rights Reserved
  181.  
  182.  These  files  are  distributed  under  the  ShareWare concept. Please
  183.  Do Not   distribute modified  versions without permission of the Author.
  184.  
  185.  
  186.  Do Not remove this notice or any other copyright notice.
  187.  
  188.                          ╔══════════════════╗
  189.                          ║══════════════════║
  190.                          ║    DISCLAIMER    ║
  191.                          ║══════════════════║
  192.                          ╚══════════════════╝
  193.  
  194.    There are NO guarantees  as the DOS environment  is a tricky area and some
  195.    BIOS may NOT react well to the intrusion. It has been successfully tested
  196.    on AMI, PHOENIX and AWARD BIOS's without any problems. The dates of these
  197.    BIOS's are not available.  I mean afterall its Free !
  198.  
  199.    THIS PRODUCT IS LICENSED  "AS IS" WITHOUT ANY WARRANTY OF MERCHANTABILITY
  200.    OR FITNESS  FOR  A  PARTICULAR  PURPOSE,  PERFORMANCE,  OR OTHERWISE. ALL
  201.    WARRANTIES ARE EXPRESSLY DISCLAIMED. BY USING THE EDITPATH PROGRAMME  YOU
  202.    AGREE THAT JOHN MCNAMARA,WILL NOT BE LIABLE TO YOU OR ANY THIRD PARTY FOR
  203.    ANY USE OF (OR INABILITY TO USE) OR PERFORMANCE OF THIS PROGRAMME, OR FOR
  204.    ANY DAMAGES WHATSOEVER WHETHER BASED ON CONTRACT, TORT OR OTHERWISE. EVEN
  205.    IF WE ARE NOTIFIED OF SUCH POSSIBILITY IN ADVANCE.
  206.  
  207.    You may not reverse-engineer, disassemble, modify,  decompile or  create
  208.    derivative works of this programme.  Piracy has been investigated by the
  209.    FBI and prosecuted under federal statutes.   Applicable law provides for
  210.    damages and recovery of attorney's fees. Distribution of any  MÄC's Place
  211.    BBS Utilities in any medium without its accompanying documentation is an
  212.    unauthorized modification. That is a theft of intellectual property.
  213.   ----------------
  214.  
  215.  
  216.     EDITPATH - Version 3.0                                           Page - 4
  217.  
  218.                                  LICENSE
  219.                                  =======
  220.  The EDITPATH  Utility programme  can be  freely distributed so long as it
  221.  is  not  modified  or  sold  for  profit.  If you find that the programme
  222.  is  valuable, you  can send  a donation  for what  you think  it is worth.
  223.  A donation of $5 is suggested.
  224.  
  225.  Please Send your contributions to:
  226.  
  227.  
  228.     John McNamara
  229.     211 W. Pearsall St.
  230.     Dunn, NC 28334
  231.  
  232.  
  233.  
  234.  
  235.  If you have any questions, bugs, or suggestions, please contact the author
  236.  at:
  237.  
  238.      Author:
  239.  
  240.      John McNamara - SysOp
  241.      MÄC's Place BBS
  242.      (919) 891-1111 [19200 HST]
  243.  
  244.  
  245.   Or in the RIME "C" Conference or RIME UNIX Conference
  246.  
  247.    The latest version is always available for downloading.
  248.  
  249.  
  250.  
  251.                                                      Date: 8 May 1990
  252.  
  253.  
  254.